home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1998 August / PC Plus SuperCD 50a Issue 142 (CD142a) (August 1998).iso / trial / demon / TURNPIKE.1 / CLASSES.ZIP / JAVA / LANG / Process.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-04-14  |  451 b   |  19 lines

  1. package java.lang;
  2.  
  3. import java.io.InputStream;
  4. import java.io.OutputStream;
  5.  
  6. public abstract class Process {
  7.    public abstract OutputStream getOutputStream();
  8.  
  9.    public abstract InputStream getInputStream();
  10.  
  11.    public abstract InputStream getErrorStream();
  12.  
  13.    public abstract int waitFor() throws InterruptedException;
  14.  
  15.    public abstract int exitValue();
  16.  
  17.    public abstract void destroy();
  18. }
  19.